home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / LISTF.H < prev    next >
Text File  |  1994-05-15  |  1KB  |  24 lines

  1. /*******************************************************************/
  2. /* LISTF.H - header file for functions - LIST.EXE                  */
  3. /* Copyright (c) 1994 Coronado Enterprises                         */
  4. /*                                                                 */
  5. /* This contains the prototypes for the working functions for the  */
  6. /*  source code listing program.                                   */
  7. /*******************************************************************/
  8.  
  9.       /* return 0 if the file opens correctly, or 1 if an error    */
  10. int  open_in_file(int no, char *name);
  11.  
  12.       /* return 0 if the printer opens correctly, or 1 of an error */
  13. int  open_printer(void);         
  14.  
  15.       /* return 1 if a valid line is read in, or 0 for EOF         */
  16. int  read_one_line(void);
  17.  
  18.       /* the following prototypes are self documenting             */
  19. void get_file_date_time(void);
  20. void top_of_page(void);
  21. void print_one_line(void);
  22. void eject_page(void);
  23. void close_both_files(void);
  24.